home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / GRAPH_FO / (GRAPH / CGRAPHTE / CGRAPHDO.H < prev    next >
Text File  |  1991-02-15  |  830b  |  31 lines

  1. /******************************************************************************
  2.  CGraphDoc.h
  3.  
  4.         Interface for the GraphDoc Class
  5.  
  6.         Copyright ⌐ 1989 Symantec Corporation. All rights reserved.
  7.  
  8.  ******************************************************************************/
  9.  
  10. #define _H_CGraphDoc
  11.  
  12. /* includes */
  13. #include    <CDocument.h>                /* Interface for its superclass        */
  14. #include    <CApplication.h>
  15.  
  16. /* class definition */
  17. struct CGraphDoc : CDocument {                /* Class Declaration                */
  18.                                 /** Instance Variables **/
  19.  
  20.                                 /** Instance Methods **/
  21.                                     /** Contruction/Destruction **/
  22.     void        IGraphDoc(CApplication *itsSupervisor);
  23.  
  24.     void        NewFile(void);
  25.     void        OpenFile(SFReply *macSFReply);
  26.     void        BuildWindow(Handle theData);
  27.  
  28.     Boolean        DoSave(void);
  29.     Boolean        DoSaveAs(SFReply *macSFReply);
  30.     void        DoRevert(void);
  31. };